From bad456af01baf86142e4e640ce91a9e0ebcd2e28 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 19 Aug 2009 14:22:15 +0100 Subject: [PATCH] xen-hvmctx: don't compile for ia64. xen-hvmctx is a x86 specific tool so that it shouldn't compile for ia64. Signed-off-by: Isaku Yamahata --- tools/misc/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/misc/Makefile b/tools/misc/Makefile index 424a34a0a4..07a09708fe 100644 --- a/tools/misc/Makefile +++ b/tools/misc/Makefile @@ -10,8 +10,8 @@ CFLAGS += $(INCLUDES) HDRS = $(wildcard *.h) -TARGETS-y := xenperf xenpm xen-tmem-list-parse gtraceview gtracestat xen-hvmctx -TARGETS-$(CONFIG_X86) += xen-detect +TARGETS-y := xenperf xenpm xen-tmem-list-parse gtraceview gtracestat +TARGETS-$(CONFIG_X86) += xen-detect xen-hvmctx TARGETS := $(TARGETS-y) SUBDIRS-$(CONFIG_LOMOUNT) += lomount @@ -22,7 +22,8 @@ INSTALL_BIN-y := xencons INSTALL_BIN-$(CONFIG_X86) += xen-detect INSTALL_BIN := $(INSTALL_BIN-y) -INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat xen-hvmctx +INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat +INSTALL_SBIN-$(CONFIG_X86) += xen-hvmctx INSTALL_SBIN := $(INSTALL_SBIN-y) DEFAULT_PYTHON_PATH := $(shell $(XEN_ROOT)/tools/python/get-path) -- 2.30.2